/* style.css */ /* Background */ body { background-color: #f0f8ff; /* Light blue background */ font-family: Arial, sans-serif; /* Change font */ text-align: center; } /* Heading Styling */ h1 { color: #ff6347; /* Tomato color for heading */ font-size: 36px; font-weight: bold; } h2 { color: #2e8b57; /* Sea green for subtitle */ font-size: 24px; } /* Button Styling */ button { background-color: #4caf50; /* Green button */ color: white; padding: 15px 32px; font-size: 18px; border: none; border-radius: 5px; cursor: pointer; transition: background-color 0.3s ease; } button:hover { background-color: #45a049; /* Darker green on hover */ } /* Image Styling */ img { width: 200px; height: auto; border-radius: 10px; margin-top: 20px; } /* Output Text Styling */ #output { font-size: 20px; font-weight: bold; color: #333; margin-top: 20px; }